dotConnect for Salesforce Marketing Cloud Documentation
Devart.Data.ExactTarget Namespace / ExactTargetCommandBuilder Class / GetInsertCommand Method / GetInsertCommand(String[],Boolean) Method
Defines list of columns that are allowed to update.
Determines whether names of parameters in command text will be based on columns' names.

In This Topic
    GetInsertCommand(String[],Boolean) Method
    In This Topic
    Gets the automatically generated SQL statement required to perform inserts on the data source when an application calls System.Data.Common.DbDataAdapter.Update() on the ExactTargetDataAdapter.
    Syntax
    'Declaration
     
    Public Overloads Shadows Function GetInsertCommand( _
       ByVal fields() As String, _
       ByVal useColumnsForParameterNames As Boolean _
    ) As ExactTargetCommand
    public new ExactTargetCommand GetInsertCommand( 
       string[] fields,
       bool useColumnsForParameterNames
    )

    Parameters

    fields
    Defines list of columns that are allowed to update.
    useColumnsForParameterNames
    Determines whether names of parameters in command text will be based on columns' names.

    Return Value

    The text of the SQL statement to be executed.
    Remarks
    You can use the GetInsertCommand() method for informational or troubleshooting purposes because it returns the ExactTargetCommand object to be executed.

    You can also use GetInsertCommand() as the basis of a modified command. For example, you might call GetInsertCommand() and modify the CommandTimeout value, and then explicitly set that on the ExactTargetDataAdapter.

    After the SQL statement is first generated, you must explicitly call Devart.Common.DbCommandBuilderBase.RefreshSchema if it changes the statement in any way. Otherwise, the GetInsertCommand() still will be using information from the previous statement, which might not be correct. The SQL statements are first generated when the application calls either System.Data.Common.DbDataAdapter.Update() or GetInsertCommand().

    useColumnsForParameterNames argument determines whether names of paramerters in command text will be like ":p1", ":p2" (if false), or names of columns will be used (if true), like ":mycolumn1", ":myothercolumn".

    fields argument defines list of columns that are allowed to update. Columns not included into the list will not be updated.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also